home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- import java.io.Serializable;
-
- class Collections$UnmodifiableSet<E> extends Collections.UnmodifiableCollection<E> implements Set<E>, Serializable {
- private static final long serialVersionUID = -9215047833775013803L;
-
- Collections$UnmodifiableSet(Set<? extends E> var1) {
- super(var1);
- }
-
- public boolean equals(Object var1) {
- return var1 == this || this.c.equals(var1);
- }
-
- public int hashCode() {
- return this.c.hashCode();
- }
- }
-